body {
  color: #FFFFFF;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;  

}

/* Import Clash Display from local assets */
@font-face {
  font-family: 'Clash Grotesk';
  src: url('../assets/fonts/ClashGrotesk_Complete/Fonts/WEB/fonts/ClashGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Grotesk';
  src: url('../assets/fonts/ClashGrotesk_Complete/Fonts/WEB/fonts/ClashGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Segoe UI';
  src: url('../assets/fonts/segoe-ui-this/segoeuithis.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');



.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.navbar h1{
    color: #000;
}

.navbar-title {
    font-size: 2rem;
    font-weight: 30;
    font-family: 'Michroma', sans-serif;
}

.navbar-title .highlight-a ,
.navbar-title .highlight-i{
    color: #8E77F8; 
    font-weight: bold;
}


.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    transition: color 0.2s, background 0.2s;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    font-family: 'Clash Grotesk', sans-serif;
}

.navbar-links li a.contact-btn {
    background: #000000;
    color: #ffffff;
    border-radius: 2rem;
    font-weight: 500;
}

.navbar-links li a.contact-btn:hover {
    background: #000000;
    color: #ffffff;
}


.navbar-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #222;
  margin-left: auto;
}

/*
===========================================
=                 footer                  =
===========================================
 */


.footer-section {
  background: #F6F6F6;
  padding: 4rem 0 2rem 0;
  font-family: 'Clash Grotesk', 'Segoe UI', Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand h1 {
  font-size: 1.5rem;
  color: #000000;
}

.footer-logo {
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 1.2rem;
}

.footer-logo-accent {
  color: #8E77F8;
  font-weight: 400;
}




.footer-social {
  display: flex;
  gap: 16px; 
  align-items: center;
}

.footer-social a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  padding: 4px;           
  box-sizing: border-box;
}



.footer-social a:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}


.footer-contact {
  flex: 1 1 320px;
  min-width: 260px;
}

.footer-contact-title {
  font-size: 2rem;
  font-weight: 400;
    color: #000000;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif !important;
}

.footer-contact-list {
  font-size: 1rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact-list span {
  font-weight: 500;
  color: #000000;
  font-style: normal;
}

.footer-contact-list a {
  color: #000000;
  text-decoration: none !important;
  transition: color 0.2s;
}
.footer-contact-list a:hover {
  color: #8E77F8;
}

.footer-newsletter {
  flex: 1 1 320px;
  min-width: 260px;
}

.footer-newsletter-title {
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  font-family: 'Clash Grotesk', 'Segoe UI', Arial, sans-serif;
}

.footer-newsletter-desc {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 370px;
}

.footer-newsletter-form input[type="email"] {
  flex: 1 1 auto;
  padding: 0.8rem 1rem;
  border: 1px solid #000000;
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 1rem;
  outline: none;
  background: #ffffff;
  font-family: inherit;
}

.footer-newsletter-form button {
  padding: 0 1.5rem;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0 3px 3px 0;
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover {
  background: #8E77F8;
  border-color: #8E77F8;
}


/* For tablets and below */
@media (max-width: 900px) {

   .navbar {
    padding: 1rem 1rem;
    display: flex;
    flex-direction: row; 
  }
  .navbar-title {
    font-size: 1.3rem;
    margin: 0;
  }
  .navbar-title {
    font-size: 1.3rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 0 2rem;
  }
  .footer-brand,
  .footer-contact,
  .footer-newsletter {
    width: 100%;
    min-width: 0;
  }
  .footer-newsletter-form {
    max-width: 100%;
  }
}

/* For small tablets and large phones */
@media (max-width: 700px) {

   .navbar {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row; 
  }
  .navbar-title {
    font-size: 1.3rem;
    margin: 0;
  }
  .navbar-title {
    font-size: 1.3rem;
  }
  .footer-contact-title,
  .footer-newsletter-title {
    font-size: 1.3rem;
  }
  .footer-logo {
    font-size: 1.2rem;
  }

   .navbar-menu-btn {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }


  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 60px; 
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
    padding: 1rem 0;
  }
  .navbar-links.show {
    display: flex;
  }
  .navbar-menu-btn {
    display: block;
  }
  .navbar {
    position: relative;
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem;
  }
  .navbar-title {
    font-size: 1rem;
  }
  .navbar-links li a {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }
  .footer-section {
    padding: 2rem 0 1rem 0;
  }
  .footer-container {
    padding: 0 1.5rem;
    gap: 1.2rem;
  }
  .footer-brand h1,
  .footer-contact-title,
  .footer-newsletter-title {
    font-size: 1.1rem;
  }
  .footer-logo {
    font-size: 1rem;
  }
  .footer-newsletter-form input[type="email"] {
    padding: 0.6rem 0.7rem;
    font-size: 0.95rem;
  }
  .footer-newsletter-form button {
    padding: 0 0.8rem;
    font-size: 0.95rem;
  }
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}